projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
08f2039
)
x86: Fix log-level in printing e820 memory map.
author
Keir Fraser
<keir@xensource.com>
Sun, 10 Jun 2007 15:12:51 +0000
(16:12 +0100)
committer
Keir Fraser
<keir@xensource.com>
Sun, 10 Jun 2007 15:12:51 +0000
(16:12 +0100)
Signed-off-by: Keir Fraser <keir@xensource.com>
xen/arch/x86/e820.c
patch
|
blob
|
history
diff --git
a/xen/arch/x86/e820.c
b/xen/arch/x86/e820.c
index 652d4e00425c4fd4b0a1aeb2ee474f2feb631c1e..59743f4493ab0e72cfe2c8c6bd1cd9d82e7cb85e 100644
(file)
--- a/
xen/arch/x86/e820.c
+++ b/
xen/arch/x86/e820.c
@@
-416,7
+416,7
@@
unsigned long __init init_e820(
const char *str, struct e820entry *raw, int *raw_nr)
{
machine_specific_memory_setup(raw, raw_nr);
- printk(
KERN_INFO
"%s RAM map:\n", str);
+ printk("%s RAM map:\n", str);
print_e820_memory_map(e820.map, e820.nr_map);
return find_max_pfn();
}